View Javadoc

1   package org.votech.ds6.vast.render;
2   
3   public interface ColumnRenderer {
4   
5   	String heading(VOTable table);
6   
7   	String value(VOTable table, int row);
8   
9   	String getFooterText();
10  
11  	String getHeader();
12  
13  }